From Cppreference
|
|
| multimap& operator=( const multimap& other );
| (1)
|
|
|
|
|
| multimap& operator=( multimap&& other );
| (2)
| (since C++11)
|
|
|
|
Replaces the contents of the container.
1) Copy assignment operator. Replaces the contents with a copy of the contents of other.
2) Move assignment operator. Replaces the contents with those of other using move semantics.
[edit] Parameters
| other
| -
| another container to be used as source
|
[edit] Return value
*this
[edit] Complexity
[edit] See also
|
|
|
| constructs the multimap (public member function)
|